home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Ver Disp 17.xpl < prev    next >
Text File  |  2004-03-01  |  949b  |  39 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="1"
  4. "UIPATH"="Information\Applications"
  5. "NAME"="Microsoft Plus! Check #2"
  6. "VERSION"="1.02"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Plus! DME"
  9. "DESCRIPTION 1"="This plug-in displays if Plus! Digital Media Edition is installed or not."
  10. "DESCRIPTION 2"="You can't change anything!!!"
  11. "AUTHOR"="Xteq Systems (CptSiskoX)"
  12. "CONTACTURL"="http://www.xteq.com/"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="Thanks to joeperez for the bug notice"
  15.  
  16.  
  17.  
  18. sV1="HKEY_CURRENT_USER\Software\Microsoft\Microsoft Plus!\Plus! Digital Media Edition"
  19.  
  20. Sub Plugin_Initialize 
  21. sT="Not installed"
  22.  
  23. if RegPathExists(sv1) then
  24.    sT="Detected"  
  25. end if
  26.  
  27. Call SetUIElement(1,sT)
  28. Call Disable 'user can't change anything!
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35. End Sub
  36.  
  37. Sub Plugin_Terminate 
  38. End Sub
  39.